• More magical AA semantics D Programming Language Discussion

    Updated: 2013-01-11 11:10:55
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D More magical AA semantics D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 3 hours ago More magical AA semantics Don Reply Consider this code : int[int x int k x[2 5 Error , range violation . Makes sense . x[2 x[2 5 But this works That is , x[2 doesn't exist , unless you are about to assign to it What happens is : 1. lvalue index creates x[2 sets it to int.init 2. rvalue index returns x[2 which is now 0 3.

  • vibe.d error on OS X 10.6 D Programming Language Discussion

    Updated: 2013-01-11 03:08:41
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D vibe.d error on OS X 10.6 D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 4 hours ago vibe.d error on OS X 10.6 Chris Reply Got the following error when running vibe after installing : ld : library not found for levent_pthreads collect2 : ld returned 1 exit status errorlevel 1 4 hours ago Re : vibe.d error on OS X 10.6 Chris Posted in reply to Chris Reply On Thursday , 10 January 2013 at 22:50:02 UTC , Chris

  • Official DMD compiler written in D D Programming Language Discussion

    Updated: 2013-01-11 03:08:41
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D Official DMD compiler written in D D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 4 hours ago Re : Official DMD compiler written in D H . S . Teoh Posted in reply to Era Scarecrow Reply On Thu , Jan 10, 2013 at 11:18:07PM 0100, Era Scarecrow wrote : On Thursday , 10 January 2013 at 22:02:17 UTC , Dmitry Olshansky wrote : user defined implicit conversion so that AALiteral(K,V implicitly AA K,V The other use

  • Target oldest supported OS by default D Programming Language Discussion

    Updated: 2013-01-11 03:08:41
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D Target oldest supported OS by default D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 6 hours ago Target oldest supported OS by default Jacob Carlborg Reply I just had an issue with a binary compiled on Mac OS X 10.8 not running on any older version . When I found the problem it was an easy fix adding the following linker flags : L-macosx_version_min L10.6 Would it be a good idea if DMD targeted the oldest

  • core.runtime loadLibrary and unloadLibrary D Programming Language Discussion

    Updated: 2013-01-11 03:08:41
    : Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D core.runtime : loadLibrary and unloadLibrary D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 19 hours ago core.runtime : loadLibrary and unloadLibrary Rob T Reply http : dlang.org phobos core_runtime.html Runtime.loadLibrary I want to load shared libraries during runtime as plug-in's , but the consensus seemed to indicate that DMD is not yet ready for this . I wonder if these functions provide any useful

  • Creation of import libraries for Windows D Programming Language Discussion

    Updated: 2013-01-11 03:08:41
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D Creation of import libraries for Windows D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 9 hours ago Creation of import libraries for Windows Phil Lavoie Reply Hi all , This is actually a duplicate of my post on the D.learn forums I am concerned that it hasn't been answered only because it is in a less popular sub forum . I'll try to make it short . This websites recommends implib for the creation of import

  • Shadowing of members D Programming Language Discussion

    Updated: 2013-01-10 03:26:23
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D Shadowing of members D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 6 hours ago Shadowing of members Benjamin Thaut Reply After some refactoring I had a series of bugs that came from renaming class members so that the following situation was present . class foo float a void doSomething( float a a a 2.0 The local variable a shadows the member a after the refactoring and therefore this code will no longer work

  • Transitioning to the new Release Process D Programming Language Discussion

    Updated: 2013-01-09 19:24:41
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D Transitioning to the new Release Process D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 2 hours ago Transitioning to the new Release Process Jesse Phillips Reply Before starting this I did come across Walter's complaint of issues , but feel this needs a new thread . But didn't read all replies . The new process introduces a new branch called staging . This is not_ used as one would first think . staging is

  • Official DMD compiler written in D D Programming Language Discussion

    Updated: 2013-01-09 03:18:38
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D Official DMD compiler written in D D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 8 hours ago Official DMD compiler written in D Tim Krimm Reply Now that D 2.0 is fairly stable , are there any plans of writing the official DMD compiler with the D 2.0 language vs the present language of C++ DMD 2.0 would have to be feature frozen and then DMD 3.0 could be written with the previous DMD 2.0 compiler . What are

  • traits(getAttributes with string mixin D Programming Language Discussion

    Updated: 2013-01-08 00:11:39
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D traits(getAttributes with string mixin D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 4 hours ago traits(getAttributes with string mixin Jacob Carlborg Reply I have some code looking like this . I don't understand why I can use a string mixin together with traits(getAttributes when it doesn't work if I use the template getAttributes template Tuple T . alias T Tuple struct Foo 3 int a template getAttributes

  • manual memory management D Programming Language Discussion

    Updated: 2013-01-07 16:07:51
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D manual memory management D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 56 minutes ago manual memory management Gor Gyolchanyan : Attachments text html part Reply Hello , folks I'm on to a project , which requires manual memory management using custom allocators , but I can't seem to get dynamic arrays and associative arrays to work . The std.conv.emplace only allocates the pointer and the size of the

  • shared gitconfig D Programming Language Discussion

    Updated: 2013-01-07 00:03:15
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D shared gitconfig D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 4 hours ago shared gitconfig Andrei Alexandrescu Reply Sent this to dmd-internals , opening for a broader discussion : Hello , I wonder how we can define a few aliases of project-wide usefulness to git . For example , I tried today to get the latest and greatest phobos into my repo , and got a bunch of conflicts . I searched a while on the net

  • D based BEEP library D Programming Language Discussion

    Updated: 2013-01-05 01:44:56
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D D based BEEP library D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help 1 hour ago D based BEEP library Robert M . Münch Reply Hi , since I'm a big fan of BEEP has anyone tried or started to implement a BEEP lib in D For BEEP see : http : en.wikipedia.org wiki BEEP http : beepcore.org http : www.aspl.es vortex C based lib Robert M . Münch Saphirion AG http : www.saphirion.com smarter better faster Top Discussion

  • digitalmars.D index page 1184 D Programming Language Discussion

    Updated: 2012-12-24 15:40:53
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta digitalmars.D page 1184 D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links View mode : basic threaded horizontal-split Log in Help digitalmars.D Thread Thread Starter Last Post Replies Reserving Keywords by Jan-Eric Duden April 28, 2004 by School 3 Abstract static methods by Mike April 27, 2004 by Mike 0 D takes the fun out of programming by Ant April 27, 2004 by vanh 4 D takes the fun out of programming by Achilleas Margaritis April 27, 2004 by Walter 6 switch branch : solution

  • Help D Programming Language Discussion

    Updated: 2012-12-08 06:21:06
    Entire D Site Library Reference Forum Newsgroup Archives D Programming Language Discussion beta Help D Home Overview Features Downloads Tools Change Log Bug Tracker FAQ Appendices Acknowledgments Sitemap D1 Home Documentation Book 3 1. Tutorial 13. Concurrency Language Reference Library Reference How-tos Articles Community Forums GitHub Wiki Review Queue Twitter Links Log in Help View modes You can browse the discussions using one of several view modes : Basic A forum-like view with paged linear . threads Threaded Threaded group overview with single post display , similar to mailing list . archives Horizontal-split JavaScript-powered interface with a split view and keyboard shortcuts , similar to a mail or newsgroup . client Read post history The posts you've viewed are saved to a

  • IDE Bartosz Milewski's Programming Cafe

    Updated: 2012-11-20 17:38:39
    Home About Bartosz Milewski's Programming Cafe Concurrency , Multicore , C++ , Haskell IDE Archived Posts from this Category November 19, 2012 Designing the Haskell IDE Posted by Bartosz Milewski under Functional Programming Haskell IDE Programming Leave a Comment I published a new blog post at the FP Complete site , with a peek at our efforts to create the Haskell IDE . I concentrated mostly on the interaction between the programmer and the IDE . I’ve been always championing the top-down approach to design and implementation in the case of a GUI program , the top is the GUI . Of course we’ve been working on the infrastructure as well , but user experience is what makes or breaks software products . Search : for Subscribe RSS Posts Email Subscription Enter your email to receive new post .

  • Designing the Haskell IDE Bartosz Milewski's Programming Cafe

    Updated: 2012-11-20 17:38:39
    Home About Bartosz Milewski's Programming Cafe Concurrency , Multicore , C++ , Haskell November 19, 2012 Designing the Haskell IDE Posted by Bartosz Milewski under Functional Programming Haskell IDE Programming Leave a Comment I published a new blog post at the FP Complete site , with a peek at our efforts to create the Haskell IDE . I concentrated mostly on the interaction between the programmer and the IDE . I’ve been always championing the top-down approach to design and implementation in the case of a GUI program , the top is the GUI . Of course we’ve been working on the infrastructure as well , but user experience is what makes or breaks software products . About these ads Like : this Like Be the first to like . this Leave a Reply Cancel reply Enter your comment here . Fill in your

  • Designing the Haskell IDE Bartosz Milewski's Programming Cafe

    Updated: 2012-11-20 17:38:38
    Home About Bartosz Milewski's Programming Cafe Concurrency , Multicore , C++ , Haskell November 19, 2012 Designing the Haskell IDE Posted by Bartosz Milewski under Functional Programming Haskell IDE Programming Leave a Comment I published a new blog post at the FP Complete site , with a peek at our efforts to create the Haskell IDE . I concentrated mostly on the interaction between the programmer and the IDE . I’ve been always championing the top-down approach to design and implementation in the case of a GUI program , the top is the GUI . Of course we’ve been working on the infrastructure as well , but user experience is what makes or breaks software products . About these ads Like : this Like Be the first to like . this Leave a Reply Cancel reply Enter your comment here . Fill in your

  • Designing the Haskell IDE FP Complete

    Updated: 2012-11-20 17:38:37
    About Us Services News Blog Partners Technology Resources Designing the Haskell IDE November 19, 2012 by Bartosz Milewski 7 Comments As you might have heard through the grapevine , or learned from Michael Snoyman’s blog or from Gregg Lebovitz’ presentation at the Boston Haskell User†s Group FP Complete is working on a Haskell IDE . Michael’s blog received a lot of comments and precipitated a reddit exchange Gregg’s presentation sparked a lively discussion both turned out to be excellent sources of ideas . I hope this will continue . We welcome any feedback , positive or negative , and we’ll try to incorporate it in our projects . So here’s another update and a look at what’s cooking in the FP Complete . kitchen We started our work by researching existing solutions from which we are

  • 2012 November Bartosz Milewski's Programming Cafe

    Updated: 2012-11-20 17:38:37
    Home About Bartosz Milewski's Programming Cafe Concurrency , Multicore , C++ , Haskell November 2012 Monthly Archive November 19, 2012 Designing the Haskell IDE Posted by Bartosz Milewski under Functional Programming Haskell IDE Programming Leave a Comment I published a new blog post at the FP Complete site , with a peek at our efforts to create the Haskell IDE . I concentrated mostly on the interaction between the programmer and the IDE . I’ve been always championing the top-down approach to design and implementation in the case of a GUI program , the top is the GUI . Of course we’ve been working on the infrastructure as well , but user experience is what makes or breaks software products . Search : for Subscribe RSS Posts Email Subscription Enter your email to receive new post .

  • No title

    Updated: 2012-11-14 05:19:17

Current Feed Items | Previous Months Items

Dec 2012 | Nov 2012 | Oct 2012 | Sep 2012 | Aug 2012 | Jul 2012